.rfmx-master-scope {
    background-color: #0c0c0c;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.rfmx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading Yellow Underline */
.rfmx-heading-underlined {
    position: relative;
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.rfmx-heading-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #ffcc00;
    border-radius: 2px;
}

.rfmx-center-head {
    text-align: center;
    width: 100%;
}

.rfmx-center-head .rfmx-heading-underlined::after {
    left: 50%;
    transform: translateX(-50%);
}

.rfmx-heading-underlined span {
    color: #ffcc00;
}

/* Hero Section Responsive Fix */
.rfmx-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('') center/cover;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Space for Navbar */
}

.rfmx-hero-inner {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
}

.rfmx-top-tag {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.rfmx-main-h {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 15px 0;
}

.rfmx-hero-p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 35px;
}

/* Buttons */
.rfmx-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rfmx-btn-yellow {
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.rfmx-btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.rfmx-btn-yellow:hover {
    background: #fff;
    transform: translateY(-3px);
}

.rfmx-btn-white:hover {
    background: #fff;
    color: #000;
}

/* Sections */
.rfmx-section {
    padding: clamp(60px, 10vh, 100px) 0;
}

.rfmx-bg-dark {
    background-color: #060606;
}

.rfmx-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rfmx-para {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Mini Features */
.rfmx-mini-features {
    display: grid;
    gap: 15px;
}

.rfmx-m-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffcc00;
}

.rfmx-m-item i {
    font-size: 1.2rem;
}

/* Image Holder */
.rfmx-image-holder {
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.rfmx-image-holder img {
    width: 100%;
    display: block;
    opacity: 0.8;
}

.rfmx-img-caption {
    position: absolute;
    bottom: 0;
    background: #ffcc00;
    color: #000;
    width: 100%;
    text-align: center;
    padding: 8px;
    font-weight: 800;
    font-size: 12px;
}

/* Card Grid */
.rfmx-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rfmx-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.4s;
}

.rfmx-card:hover {
    border-color: #ffcc00;
    transform: translateY(-10px);
}

.rfmx-card-icon {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.rfmx-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.rfmx-card p {
    color: #999;
    font-size: 0.95rem;
}

/* Application Boxes */
.rfmx-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.rfmx-app-box {
    background: #111;
    padding: 30px;
    border-left: 4px solid #ffcc00;
    font-weight: 800;
    transition: 0.3s;
    cursor: default;
}

.rfmx-app-box:hover {
    background: #ffcc00;
    color: #000;
}

/* Stats Bar */
.rfmx-stats-bar {
    background: #ffcc00;
    color: #000;
    padding: 50px 0;
}

.rfmx-stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.rfmx-stat-item h4 {
    font-size: 2rem;
    font-weight: 900;
}

.rfmx-stat-item p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

/* RESPONSIVE QUERIES */
@media (max-width: 992px) {
    .rfmx-split-grid {
        grid-template-columns: 1fr;
    }

    .rfmx-hero {
        text-align: center;
        padding-top: 120px;
    }

    .rfmx-hero-btns {
        justify-content: center;
    }

    .rfmx-heading-underlined::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .rfmx-img-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    .rfmx-hero-btns a {
        width: 100%;
    }

    .rfmx-section {
        padding: 60px 0;
    }
}